home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (4th Edition)
/
The Business Master - 4th Edition.iso
/
files
/
wordsing
/
bookbld
/
printdoc.bat
< prev
next >
Wrap
DOS Batch File
|
1992-10-01
|
541b
|
18 lines
@REM PRINTDOC.BAT; JLS 10/92
@echo off
if "%1"=="" goto info
ECHO Docs for BOOKBILD 1.0 for DOS will now print...
ECHO ...
ECHO The files REGISTER.DOC, BOOKBILD.DOC, and PRODUCTS.DOC will print...
ECHO VENDOR.DOC contains sysop and vendor information, and may
ECHO be printed by typing "type vendor.doc >lpt1" from the BOOKBILD disk.
type register.doc >%1
type bookbild.doc >%1
type products.doc >%1
goto end
:info
ECHO Start PRINTDOC.BAT with a device name; for example...
ECHO PRINTDOC LPT1
ECHO or:
ECHO PRINTDOC PRN
:end